*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body,html {
      width: 100%;
      overflow-x: hidden;
      background: #f4f4f4;
    }
    
/*------------------------------------------------Navbar section--------------------------------------*/
  .navbar {
  height: 90px;
  width: 100%;
  background: #fff;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo {
  margin-left: 30px; 
}
.logo img {
  height: 90px; 
  width: auto;
  display: block;
}

/* Nav Links */
.nav-links {

  display: flex;
  align-items: center;
  gap: 50px;
}
.nav-links a {
  color: #050505;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #fb4306e1;
  transition: 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Social Icons */
.right-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 40px;
}
.right-icons a {
  color: #050505;
  font-size: 20px;
  transition: 0.3s;
}
.right-icons a:hover {
  color: #fb4306e1;  
  transform: scale(1.2);
}

/* Toggle Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-right: 0; /* mobile me center ho jaye */
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .logo img {
    height: 60px;
    margin: 0;
  }

  /* ✅ Hide social icons on mobile */
  .right-icons {
    display: none;
  }
}

    /* -------------------------------------------full width image ------------------------------------------------------------------*/
     
     .hero-image-banner {
      width: 100%;
      height: 100vh; /* Full viewport height */
      overflow: hidden;
    }
    
    .hero-image-banner img {
      width: 100%;
      height:790px;
      object-fit: cover; /* Makes image fill the area without distortion */
      display: block;
    }
   .hero-text {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     text-align: center;
     color: white;
     background: rgba(0,0,0,0.5);
     padding: 30px 50px;     /* Desktop same */
     border-radius: 15px;
     animation: fadeInUp 1s ease-in-out;
     max-width: 90%;        /* Responsive ke liye */
     box-sizing: border-box;
    }

.hero-text h1 {
  font-size: 48px;        /* Desktop same */
  margin-bottom: 10px;
  color: #ff6a00;
}

.hero-text p {
  font-size: 18px;        /* Desktop same */
}

/* 📱 Tablet view */
@media (max-width: 768px) {
  .hero-text {
    padding: 20px 30px;
  }
  .hero-text h1 {
    font-size: 32px;
  }
  .hero-text p {
    font-size: 16px;
  }
}

/* 📱 Mobile view */
@media (max-width: 480px) {
  .hero-text {
    padding: 15px 20px;
  }
  .hero-text h1 {
    font-size: 24px;
  }
  .hero-text p {
    font-size: 14px;
  }
}
/*------------------------------------------Product card----------------------------------------------*/
         .image-section {
          display: flex;
          flex-wrap: wrap;
          gap: 40px;
          justify-content: center;
          padding: 50px 5%;
          background-color: #f0f4ff;
        }
        
        .image-card {
          flex: 1 1 40%;
          max-width: 600px;
          text-align: center;
          background: white;
          border-radius: 15px;
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
          padding: 20px;
          transition: transform 0.3s ease;
        }
        
        .image-card:hover {
          transform: translateY(-8px);
        }
        
        .image-heading {
          font-size: 26px;
          margin-bottom: 15px;
          color: #ff6a00;;
          font-family:Georgia, 'Times New Roman', Times, serif;
        }
        
        .image-card img {
          width: 100%;
          height: auto;
          border-radius: 10px;
          border: 1px solid #edf0f5;
        }


          /* small images card */
          .products-section {
            padding: 40px 5%;
            background-color: #ffffff;
          }
          
          .section-heading {
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
            color: #ff6a00;;
            /* font-family: Georgia, 'Times New Roman', Times, serif; */
          }
          
          .product-grid {
            /* max-width: 1400px; */
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            padding: 50px 5%;
            background: #f9f9f9;
          }
          
          .product-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.6s ease-out;
          }
          
          .product-card.show {
            transform: translateY(0);
            opacity: 1;
          }
          
          .product-card img {
            width: 100%;
            height: auto;
            display: block;
          }

          .product-card:hover{
           transform: translateY(-5px);
           box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
          }

/*------------------------------------------Product card----------------------------------------------*/
.footer {
  /* margin-bottom: 20px; */
  background-color: #fbeee0;
  color: #333;
  padding: 60px 5% 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 280px;
  min-width: 250px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}

.footer-col.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #d35400;
  position: relative;
}

.footer hr {
  width: 50px;
  border: 1.5px solid #d35400;
  margin-bottom: 15px;
}

.footer p,
.footer li,
.footer a {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  text-decoration: none;
}

.footer li {
  list-style: none;
  margin-bottom: 6px;
}

.footer .quick-links {
  margin-left: 80px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px;
  background-color: #e8d8c0;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    justify-content: center;
    gap: 30px;
  }

  .footer .quick-links {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer hr {
    margin-left: auto;
    margin-right: auto;
  }
}




